/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 293;

boundaryField
{
    sideWall1
    {
        type            fixedGradient;
        gradient        uniform 2025; //q/k
    }

    sideWall2
    {
        type            fixedGradient;
        gradient        uniform 2025;  //q/k
    }

    inlet
    {
        type            fixedValue;
        value           uniform 293; // 20 degC
    }
   outlet
    {
        type            zeroGradient; 
        
    }
    
    frontAndBack
    {
        type           empty;
    }
}


// ************************************************************************* //
